home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_300
/
353_02
/
map.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-01-18
|
451b
|
25 lines
// This class handles the airport layout. It defines which direc-
// tion you can go from each location and performs the actions
// requested by the player.
#ifndef MAP_H
#define MAP_H
#include "location.h"
class map {
location *present_location;
location *result;
public:
void initialize(void);
void perform_action(void);
location *get_current_location(void) { return present_location; };
};
#endif